From 551ae8691b5fbb00a041afea225187bc56b684f6 Mon Sep 17 00:00:00 2001 From: willy Date: Sun, 22 Dec 2024 03:07:07 +0100 Subject: [PATCH] First implementation working --- plant_catalog/catalog/api_views.py | 12 +- plant_catalog/catalog/permissions.py | 10 + plant_catalog/catalog/urls.py | 8 +- plant_catalog/django_error.log | 137984 +++++++++++++++++++++ plant_catalog/plant_catalog/settings.py | 28 +- requirements.txt | 6 + 6 files changed, 138041 insertions(+), 7 deletions(-) create mode 100644 plant_catalog/catalog/permissions.py diff --git a/plant_catalog/catalog/api_views.py b/plant_catalog/catalog/api_views.py index 99b8be0..44a9863 100755 --- a/plant_catalog/catalog/api_views.py +++ b/plant_catalog/catalog/api_views.py @@ -1,8 +1,10 @@ # catalog/api_views.py from rest_framework import generics -from rest_framework.parsers import MultiPartParser, FormParser +from rest_framework.parsers import MultiPartParser, FormParser, JSONParser from rest_framework.filters import SearchFilter + +from .permissions import IsAuthenticatedOrReadOnly from .models import Plant from .serializers import PlantSerializer @@ -10,12 +12,14 @@ from .serializers import PlantSerializer class PlantListCreateAPIView(generics.ListCreateAPIView): queryset = Plant.objects.all() serializer_class = PlantSerializer - parser_classes = [MultiPartParser, FormParser] # Allow file uploads + parser_classes = [JSONParser, MultiPartParser, FormParser] # Allow file uploads filter_backends = [SearchFilter] # Add search filter search_fields = ['name', 'description'] # Search by name and description - + permission_classes = [IsAuthenticatedOrReadOnly] # Apply custom permission + # Retrieve, Update, and Delete a Plant class PlantRetrieveUpdateDestroyAPIView(generics.RetrieveUpdateDestroyAPIView): queryset = Plant.objects.all() serializer_class = PlantSerializer - parser_classes = [MultiPartParser, FormParser] # Allow file uploads and form data \ No newline at end of file + parser_classes = [JSONParser, MultiPartParser, FormParser] # Allow file uploads and form data + permission_classes = [IsAuthenticatedOrReadOnly] # Apply custom permission \ No newline at end of file diff --git a/plant_catalog/catalog/permissions.py b/plant_catalog/catalog/permissions.py new file mode 100644 index 0000000..188d2b8 --- /dev/null +++ b/plant_catalog/catalog/permissions.py @@ -0,0 +1,10 @@ +from rest_framework.permissions import SAFE_METHODS, BasePermission + +class IsAuthenticatedOrReadOnly(BasePermission): + """ + Allows GET, HEAD, OPTIONS for everyone, but restricts POST, PUT, DELETE to authenticated users. + """ + def has_permission(self, request, view): + if request.method in SAFE_METHODS: + return True # Allow read-only access + return request.user and request.user.is_authenticated diff --git a/plant_catalog/catalog/urls.py b/plant_catalog/catalog/urls.py index d126fb6..3376bb2 100755 --- a/plant_catalog/catalog/urls.py +++ b/plant_catalog/catalog/urls.py @@ -2,10 +2,16 @@ from django.http import HttpResponseRedirect from django.urls import path +from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView from .api_views import PlantListCreateAPIView, PlantRetrieveUpdateDestroyAPIView urlpatterns = [ path('', lambda request: HttpResponseRedirect('/api/plants/')), path('api/plants/', PlantListCreateAPIView.as_view(), name='plant_list_create'), # List and Create path('api/plants//', PlantRetrieveUpdateDestroyAPIView.as_view(), name='plant_detail_update_delete'), # Retrieve, Update, Delete -] \ No newline at end of file + path('api/token/', TokenObtainPairView.as_view(), name='token_obtain_pair'), + path('api/token/refresh/', TokenRefreshView.as_view(), name='token_refresh'), +] + + + diff --git a/plant_catalog/django_error.log b/plant_catalog/django_error.log index 7881250..a3a4436 100755 --- a/plant_catalog/django_error.log +++ b/plant_catalog/django_error.log @@ -10064,3 +10064,137987 @@ Traceback (most recent call last): File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host raise DisallowedHost(msg) django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '188.173.99.80'. You may need to add '188.173.99.80' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '188.173.99.80'. You may need to add '188.173.99.80' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '192.168.0.1:443'. You may need to add '192.168.0.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '192.168.0.1:443'. You may need to add '192.168.0.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '188.173.99.80'. You may need to add '188.173.99.80' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '188.173.99.80'. You may need to add '188.173.99.80' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'web.realsysadm.in:443'. You may need to add 'web.realsysadm.in' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'web.realsysadm.in:443'. You may need to add 'web.realsysadm.in' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:443'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'vf555.id:443'. You may need to add 'vf555.id' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'vf555.id:443'. You may need to add 'vf555.id' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31:80'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.138.31'. You may need to add '207.188.138.31' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'vf555.id:443'. You may need to add 'vf555.id' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'vf555.id:443'. You may need to add 'vf555.id' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'example.com:80'. You may need to add 'example.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'example.com:80'. You may need to add 'example.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'ipinfo.io:443'. You may need to add 'ipinfo.io' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'ipinfo.io:443'. You may need to add 'ipinfo.io' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '2024.ip138.com'. You may need to add '2024.ip138.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '2024.ip138.com'. You may need to add '2024.ip138.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'hotmail-com.olc.protection.outlook.com:25'. You may need to add 'hotmail-com.olc.protection.outlook.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'hotmail-com.olc.protection.outlook.com:25'. You may need to add 'hotmail-com.olc.protection.outlook.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '80.66.83.49:80'. You may need to add '80.66.83.49' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '80.66.83.49:80'. You may need to add '80.66.83.49' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '112.124.42.80:63435'. You may need to add '112.124.42.80' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '112.124.42.80:63435'. You may need to add '112.124.42.80' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'api.ip.pn:443'. You may need to add 'api.ip.pn' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '1.1.1.1:443'. You may need to add '1.1.1.1' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'myip.wtf:443'. You may need to add 'myip.wtf' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'm-vaycasino695.com'. You may need to add 'm-vaycasino695.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'm-vaycasino695.com'. You may need to add 'm-vaycasino695.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.baidu.com:443'. You may need to add 'www.baidu.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'web.realsysadm.in:443'. You may need to add 'web.realsysadm.in' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'web.realsysadm.in:443'. You may need to add 'web.realsysadm.in' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'm-bahislion590.com'. You may need to add 'm-bahislion590.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'm-bahislion590.com'. You may need to add 'm-bahislion590.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'm-bahislion590.com'. You may need to add 'm-bahislion590.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'm-bahislion590.com'. You may need to add 'm-bahislion590.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'hotmail-com.olc.protection.outlook.com:25'. You may need to add 'hotmail-com.olc.protection.outlook.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'hotmail-com.olc.protection.outlook.com:25'. You may need to add 'hotmail-com.olc.protection.outlook.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'm-bahislion590.com'. You may need to add 'm-bahislion590.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'm-bahislion590.com'. You may need to add 'm-bahislion590.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '80.66.83.49:80'. You may need to add '80.66.83.49' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '80.66.83.49:80'. You may need to add '80.66.83.49' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '0.0.0.0'. You may need to add '0.0.0.0' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '112.124.42.80:63435'. You may need to add '112.124.42.80' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '112.124.42.80:63435'. You may need to add '112.124.42.80' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'casapichuana.duckdns.org'. You may need to add 'casapichuana.duckdns.org' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'web.realsysadm.in:443'. You may need to add 'web.realsysadm.in' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'web.realsysadm.in:443'. You may need to add 'web.realsysadm.in' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.google.com:443'. You may need to add 'www.google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'succulentspectrum.gonzalohd.eu'. You may need to add 'succulentspectrum.gonzalohd.eu' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'www.liveinternet.ru:443'. You may need to add 'www.liveinternet.ru' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'www.liveinternet.ru:443'. You may need to add 'www.liveinternet.ru' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'hotmail-com.olc.protection.outlook.com:25'. You may need to add 'hotmail-com.olc.protection.outlook.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'hotmail-com.olc.protection.outlook.com:25'. You may need to add 'hotmail-com.olc.protection.outlook.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:443'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'x.com'. You may need to add 'x.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '80.66.83.49:80'. You may need to add '80.66.83.49' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '80.66.83.49:80'. You may need to add '80.66.83.49' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'google.com:443'. You may need to add 'google.com' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192:80'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. +Traceback (most recent call last): + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/utils/deprecation.py", line 133, in __call__ + response = self.process_request(request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/middleware/common.py", line 48, in process_request + host = request.get_host() + ^^^^^^^^^^^^^^^^^^ + File "/var/www/simple-plant-archive-django/venv/lib/python3.11/site-packages/django/http/request.py", line 151, in get_host + raise DisallowedHost(msg) +django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: '207.188.139.192'. You may need to add '207.188.139.192' to ALLOWED_HOSTS. diff --git a/plant_catalog/plant_catalog/settings.py b/plant_catalog/plant_catalog/settings.py index 1a87447..6666d86 100755 --- a/plant_catalog/plant_catalog/settings.py +++ b/plant_catalog/plant_catalog/settings.py @@ -12,7 +12,6 @@ https://docs.djangoproject.com/en/5.0/ref/settings/ import os from pathlib import Path -import logging # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent @@ -33,6 +32,18 @@ ALLOWED_HOSTS = ['gonzalohd.eu', 'plantsapi.gonzalohd.eu', 'localhost', '192.168 CSRF_TRUSTED_ORIGINS = [ "https://succulentspectrum.gonzalohd.eu", + "https://plantsapi.gonzalohd.eu", + "http://localhost:5173", # local development URL +] + +CORS_ALLOW_HEADERS = [ + 'authorization', + 'content-type', + 'accept', + 'origin', + 'x-requested-with', + 'user-agent', + 'accept-language', ] @@ -63,6 +74,11 @@ MIDDLEWARE = [ 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] + +SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') +USE_X_FORWARDED_HOST = True + + CORS_ALLOW_ALL_ORIGINS = True # Allow all origins for development ROOT_URLCONF = 'plant_catalog.urls' @@ -91,6 +107,14 @@ REST_FRAMEWORK = { ), 'DEFAULT_PARSER_CLASSES': ( 'rest_framework.parsers.JSONParser', + 'rest_framework.parsers.FormParser', + 'rest_framework.parsers.MultiPartParser', + ), + 'DEFAULT_AUTHENTICATION_CLASSES': ( + 'rest_framework_simplejwt.authentication.JWTAuthentication', + ), + 'DEFAULT_PERMISSION_CLASSES': ( + 'rest_framework.permissions.IsAuthenticated', ), } @@ -191,4 +215,4 @@ LOGGING = { -USE_X_FORWARDED_HOST = True + diff --git a/requirements.txt b/requirements.txt index f64d738..4955d39 100755 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,12 @@ asgiref==3.8.1 Django==5.0.8 django-cors-headers==4.4.0 djangorestframework==3.15.2 +djangorestframework-simplejwt==5.3.1 mysqlclient==2.2.4 pillow==10.4.0 sqlparse==0.5.1 + +pip==23.0.1 +PyJWT==2.10.0 +setuptools==66.1.1 +wheel==0.37.0